From: Sascha Steinbiss Date: Tue, 7 Jul 2026 18:35:29 +0000 (+0200) Subject: do not clean vendor directory on distclean X-Git-Tag: archive/raspbian/1%8.0.6-1+rpi1^2~4 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=e657a98206f849311dfe29348092745f4895b7b4;p=suricata.git do not clean vendor directory on distclean Bug-Debian: https://bugs.debian.org/915154 Last-Update: 2025-07-11 dh_auto_clean calls make distclean, which in the case of Suricata also removes the vendor directory. This breaks repeated builds. Gbp-Pq: Name fix-repeated-builds.patch --- diff --git a/rust/Makefile.am b/rust/Makefile.am index 7bb37c60..9b0a2a1a 100644 --- a/rust/Makefile.am +++ b/rust/Makefile.am @@ -103,7 +103,7 @@ clean-local: rm -rf target gen distclean-local: - rm -rf vendor dist + rm -rf dist check-bindgen-bindings: if HAVE_BINDGEN